home *** CD-ROM | disk | FTP | other *** search
/ Chip: 2005 Utilities / CHIP Utilities 2005 / CHIP Utilities 2005.iso / docs / freedos / support.intel.com / support / script / esupport_common.js
Encoding:
Text File  |  2004-06-22  |  444 b   |  28 lines

  1. function onbeforeprint_ie() {
  2.  
  3.             if(document.all) {
  4.  
  5.                         document.body.style.zoom = 0.8;           // scale the page down to fit
  6.  
  7.             }
  8.  
  9. }
  10.  
  11.  
  12.  
  13. function onafterprint_ie() {
  14.  
  15.             if(document.all) {
  16.  
  17.                         document.body.style.zoom = 1;  // reset the zoom
  18.  
  19.             }
  20.  
  21. }
  22.  
  23.  
  24.  
  25. window.onbeforeprint = onbeforeprint_ie;
  26.  
  27. window.onafterprint = onafterprint_ie;
  28.